runtime.hmap.count (field)
47 uses
runtime (current package)
map.go#L112: count int // # live cells == size of map. Must be first (used by len() builtin)
map.go#L422: if h == nil || h.count == 0 {
map.go#L492: if h == nil || h.count == 0 {
map.go#L542: if h == nil || h.count == 0 {
map.go#L694: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map.go#L719: h.count++
map.go#L754: if h == nil || h.count == 0 {
map.go#L841: h.count--
map.go#L844: if h.count == 0 {
map.go#L884: if h == nil || h.count == 0 {
map.go#L1082: if h == nil || h.count == 0 {
map.go#L1112: h.count = 0
map.go#L1144: if !overLoadFactor(h.count+1, h.B) {
map.go#L1586: return h.count
map.go#L1603: return h.count
map.go#L1670: h.count++
map.go#L1676: hint := src.count
map.go#L1690: if src.count == 0 {
map.go#L1701: dst.count = src.count
map.go#L1792: if h == nil || h.count == 0 {
map.go#L1855: if h == nil || h.count == 0 {
map_fast32.go#L18: if h == nil || h.count == 0 {
map_fast32.go#L67: if h == nil || h.count == 0 {
map_fast32.go#L176: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map_fast32.go#L192: h.count++
map_fast32.go#L275: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map_fast32.go#L291: h.count++
map_fast32.go#L307: if h == nil || h.count == 0 {
map_fast32.go#L376: h.count--
map_fast32.go#L379: if h.count == 0 {
map_fast64.go#L18: if h == nil || h.count == 0 {
map_fast64.go#L67: if h == nil || h.count == 0 {
map_fast64.go#L176: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map_fast64.go#L192: h.count++
map_fast64.go#L277: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map_fast64.go#L293: h.count++
map_fast64.go#L309: if h == nil || h.count == 0 {
map_fast64.go#L380: h.count--
map_fast64.go#L383: if h.count == 0 {
map_faststr.go#L18: if h == nil || h.count == 0 {
map_faststr.go#L122: if h == nil || h.count == 0 {
map_faststr.go#L295: if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
map_faststr.go#L310: h.count++
map_faststr.go#L326: if h == nil || h.count == 0 {
map_faststr.go#L395: h.count--
map_faststr.go#L398: if h.count == 0 {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |